home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
fg
/
fgl402e
/
expas.arj
/
TEMP
/
10-07.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-01-20
|
615b
|
32 lines
program main;
uses fgmain, fgbitmap, fgmisc;
const
hello : array [1..20] of char =
('t',#1, 'h',#2, 'e',#3, 'r',#4, 'e',#5,
'h',#1, 'e',#2, 'l',#3, 'l',#4, 'o',#5);
image : array [1..20] of char =
('T',#0, #0,#1, #0,#1, #0,#1, #0,#1,
'H',#0, #0,#1, #0,#1, #0,#1, #0,#1);
var
old_mode : integer;
begin
fg_initpm;
old_mode := fg_getmode;
fg_setmode(3);
fg_cursor(0);
fg_locate(12,37);
fg_drwimage(hello,10,2);
fg_waitkey;
fg_drwimage(image,10,2);
fg_waitkey;
fg_setmode(old_mode);
fg_reset;
end.